/* Some default properties to begin with  */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Archivo', sans-serif;
  margin: 0;
}

a {
  color: rgb(0, 0, 0);
}

ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

li {
  margin-right: 2rem;
}

.img1 {
  width: 30%;
  height: auto;
  margin-left: -10px;
}

.footer {
  padding: 2rem;
  text-align: center;
}

/* header styles begin here */
.header {
  width: 100%;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  background: white;
}

.main-title {
  font-style: italic;
  font-family: serif;
  font-size: 1.5rem;
  text-align: left;
}

.navigation {
  display: none;
  font-size: 2rem;
}

.mobile-menu {
  position: absolute;
  top: 32px;
  right: 30px;
  z-index: 2;
}

.mobile-navigation li {
  margin: 0;
}

.header.open .mobile-navigation {
  display: flex;
  position: absolute;
  background: rgb(217, 255, 0);
}

/* first section */

.first-section {
  min-height: 10vh;
  background-repeat: no-repeat;
  background-size: cover;
}

main h1 {
  color: black;
  text-transform: uppercase;
  margin: 30px 10px;
  margin-left: 20px;
}

.seew {
  padding: 15px 30px;
  margin: 20px 10px;
  margin-left: 20px;
  background-color: black;
  color: white;
  outline: none;
  border: none;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  border-radius: 50px;
}

/* second section */
.second-section {
  background: black;
  display: flex;
  padding: 2rem;
}

.second-section p {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

.container {
  background-color: white;
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0
}

.container img {
  border-radius: 50%;
  width: 50px;
}

/* third section */
.third-section {
  background: black;
  display: flex;
}

.img2{
  max-width: 100%;
  max-height: 100%;
  align-items: center;
}

/* fourth section */

.fourth-section {
  min-height: 10vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

main h2 {
  color: black;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  color: rgb(0, 0, 0);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}


/* media query for desktop values */
@media only screen and (min-width: 800px) {
  
  .img1 {
    width: 60%;
    height: auto;
    margin-left: -10px;
  }
  
  .header {
    justify-content: space-between;
    position: relative;
    align-items: center;
  }

  main {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

  .main-title {
    text-align: left;
    font-size: 2rem;
  }
  .navigation {
    display: flex;
    flex-direction: row;
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
  }

  ul{
    display: flex;
    list-style-type: none;
    align-items: center;
}

ul li a{
    display: inline-block;
    padding: 0 20px;
    text-decoration: none;
    color:black
}

li a::after{
    content:'';
    display: block;
    height: 4px;
    width: 0;
    background: black;
    transition: all .5s;
}

li a:hover::after{
    width: 100%;
}

.contact-btn{
  padding: 10px 20px;
  background-color: black;
  color: white;
  outline: none;
  border: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 50px;
}

  .mobile-menu {
    display: none;
  }

  .first-section {
    min-height: 1vh;
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    justify-content: left;
  }

  main h1 {
    font-size: 6rem;
    color: black;
    text-transform: uppercase;
    margin-left: 30px;
  }
  
  .seew {
    padding: 0px 50px;
    margin: 70px 30px;
    background-color: black;
    color: white;
    outline: none;
    border: none;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 1.5rem;
  }

  .second-section {
  background: none;
  display: flex;
  align-items: right;
  padding: 2rem;
  }

  .second-section p {
    font-size: 1rem;
    color: rgb(0, 0, 0);
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
  }


  .container {
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0
  }
  
  .container img {
    border-radius: 50%;
    width: 50px;
  }

  .third-section {
    background: black;
    display: flex;
    justify-content: center;
    text-align: center;
    width: auto;
    max-height: 500px
  }
  
  .img2{
    max-height: 100%;
    max-width: auto;
    align-items: center;
    justify-content: center;
  }

  .fourth-section {
    min-height: 10vh;
    display:block;
    margin: 0 auto;
  }
  
  main h2 {
    font-size: 1.6rem;
    color: black;
    text-transform: uppercase;
    text-align: center;
    margin-left: 20px;
  }
}
